Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

262
Vistas
Autodesk Design Automation "Value cannot be null. (Parameter 'ForgeConfiguration.ClientId')"

I´ve downloaded the Forge Design Automation sample from the following link:

https://learnforge.autodesk.io/#/tutorials/modifymodels

But the downloable code example is not working fine. When any async method who involves the DesignAutomation API is called I get -> Value cannot be null. (Parameter 'ForgeConfiguration.ClientId'). So, I would like to know how it works and how I can set the ClientId in the ForgeConfiguration class or else if I making something else wrong. I attach a fragment of code where I get the error.

 [HttpGet]
 [Route("api/forge/designautomation/engines")]
 public async Task<List<string>> GetAvailableEngines()
    {
       
        List<string> allEngines = new List<string>();
        try
        {
            dynamic oauth = await OAuthController.GetInternalAsync();

            // define Engines API
            string paginationToken = null;
            while (true)
            {
                Page<string> engines = await _designAutomation.GetEnginesAsync(paginationToken);
                allEngines.AddRange(engines.Data);
                if (engines.PaginationToken == null)
                    break;
                paginationToken = engines.PaginationToken;
            }
            allEngines.Sort();
        }
        catch (Exception error) {
            throw error;
        }
       
        return allEngines; // return list of engines
    }

And the call of the method:

function prepareLists() {
    
    list('engines', 'api/forge/designautomation/engines');
   
}
function list(control, endpoint) {
$('#' + control).find('option').remove().end();
jQuery.ajax({
    url: endpoint,
    success: function (list) {
        if (list.length === 0)
            $('#' + control).append($('<option>', { disabled: true, text: 'Nothing found' }));
        else
            list.forEach(function (item) { $('#' + control).append($('<option>', { value: item, text: item })); })
    }
});

}

about 4 years ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

Did you forget to set the Forge App Keys in the Environment Variables of your project, check the page at https://learnforge.autodesk.io/#/environment/setup/netcore_da

about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda